home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / editableArea.js < prev    next >
Encoding:
JavaScript  |  2004-03-25  |  4.7 KB  |  138 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Nvu.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Lindows.com, Inc.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998-2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Lindows.com
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. var gIsFromContextMenu = false;
  39.  
  40. function Startup()
  41. {
  42.   if ("arguments" in window && window.arguments.length >= 1)
  43.     gIsFromContextMenu = window.arguments[0];
  44.  
  45.   var dialogNode = document.getElementById("insertEditableAreaDlg");
  46.  
  47.   gDialog.okButton       = dialogNode.getButton("accept");
  48.   gDialog.warning        = document.getElementById("warning");
  49.   gDialog.editableAreaId = document.getElementById("editableAreaId");
  50.   gDialog.typeRadio      = document.getElementById("typeRadio");
  51.   gDialog.areaType       = document.getElementById("areaType");
  52.   gDialog.optional       = document.getElementById("optionalCheckbox");
  53.   gDialog.repeatable     = document.getElementById("repeatableCheckbox");
  54.   gDialog.movable        = document.getElementById("movableCheckbox");
  55.  
  56.   gDialog.okButton.disabled = true;
  57.  
  58.   if (gIsFromContextMenu)
  59.   {
  60.     gDialog.areaType.setAttribute("hidden", "true");
  61.   }
  62. }
  63.  
  64. function ControlAreaId(e)
  65. {
  66.   var id = e.value;
  67.   id = id.replace(/ /g,"");
  68.   e.value = id;
  69.  
  70.   if (!id ||
  71.       GetCurrentEditor().document.getElementById(id))
  72.   {
  73.     // oops, it already exists!
  74.     gDialog.okButton.disabled = true;
  75.     // show the warning if and only if the id is not empty
  76.     if (id)
  77.       gDialog.warning.removeAttribute("hidden");
  78.   }
  79.   else
  80.   {
  81.     gDialog.okButton.disabled = false;
  82.     gDialog.warning.setAttribute("hidden", true);
  83.   }
  84. }
  85.  
  86. function onAccept()
  87. {
  88.   var id   = gDialog.editableAreaId.value;
  89.   if (gIsFromContextMenu)
  90.   {
  91.     var e = window.opener.gContextMenuFiringDocumentElement;
  92.     GetCurrentEditor().setAttribute(e, "id", id);
  93.     if (gDialog.optional.checked)
  94.       GetCurrentEditor().setAttribute(e, "optional", "true");
  95.     if (gDialog.repeatable.checked)
  96.       GetCurrentEditor().setAttribute(e, "repeatable", "true");
  97.     if (gDialog.movable.checked)
  98.       GetCurrentEditor().setAttribute(e, "movable", "true");
  99.     // attribute "editable" *must* be the last one
  100.     GetCurrentEditor().setAttribute(e, "editable", "true");
  101.   }
  102.   else
  103.   {
  104.     var type = gDialog.typeRadio.selectedItem.value;
  105.     var htmlstring;
  106.     var optionalStr   = gDialog.optional.checked   ? 'optional="true"' : '';
  107.     var repeatableStr = gDialog.repeatable.checked ? 'repeatable="true"' : '';
  108.     var movableStr    = gDialog.movable.checked    ? 'movable="true"' : '';
  109.     switch (type) {
  110.       case "flow":
  111.         htmlstring = '<span editable="true"' +
  112.                      optionalStr + repeatableStr + movableStr +
  113.                      'id="' +
  114.                      id +
  115.                      '">' +
  116.                      id +
  117.                      '</span>';
  118.         break;
  119.       case "block":
  120.         htmlstring = '<div editable="true"' +
  121.                      optionalStr + repeatableStr + movableStr +
  122.                      'id="' +
  123.                      id +
  124.                      '">' +
  125.                      id +
  126.                      '</div>';
  127.         break;
  128.     }
  129.  
  130.     try {
  131.       GetCurrentEditor().insertHTML(htmlstring);
  132.     } catch (e) {}
  133.   }
  134.  
  135.   SaveWindowLocation();
  136.  
  137.   return true;  
  138. }